Platform Explorer / Nuxeo Platform 2023.9

Component org.nuxeo.nuxeo.ecm.platform.threed.doctype

Requirements

Resolution Order

261
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.nuxeo.ecm.platform.threed.doctype">

  <require>org.nuxeo.ecm.core.CoreExtensions</require>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">
    <schema name="threed" src="schemas/threed.xsd" prefix="threed"/>
  </extension>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">
    <facet name="ThreeD">
      <schema name="file"/>
      <schema name="files"/>
      <schema name="threed"/>
    </facet>

    <doctype name="ThreeD" extends="Document">
      <schema name="common"/>
      <schema name="dublincore"/>
      <schema name="uid"/>
      <facet name="Commentable"/>
      <facet name="Versionable"/>
      <facet name="Publishable"/>
      <facet name="ThreeD"/>
    </doctype>

    <doctype name="Folder" append="true">
      <subtypes>
        <type>ThreeD</type>
      </subtypes>
    </doctype>
    <doctype name="OrderedFolder" append="true">
      <subtypes>
        <type>ThreeD</type>
      </subtypes>
    </doctype>
    <doctype name="Workspace" append="true">
      <subtypes>
        <type>ThreeD</type>
      </subtypes>
    </doctype>
  </extension>



</component>